home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Applications 1996 May / SGI IRIX 6.2 Applications 1996 May.iso / dist / impr_dev.idb / usr / impressario / src / libimp / Makefile.z / Makefile
Makefile  |  1996-05-06  |  2KB  |  64 lines

  1. #! smake
  2. #**************************************************************************
  3. #*                                      *
  4. #*           Copyright (c) 1993 Silicon Graphics, Inc.              *
  5. #*            All Rights Reserved                    *
  6. #*                                      *
  7. #*         THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF SGI             *
  8. #*                                      *
  9. #* The copyright notice above does not evidence any actual of intended    *
  10. #* publication of such source code, and is an unpublished work by Silicon *
  11. #* Graphics, Inc. This material contains CONFIDENTIAL INFORMATION that is *
  12. #* the property of Silicon Graphics, Inc. Any use, duplication or         *
  13. #* disclosure not specifically authorized by Silicon Graphics is strictly *
  14. #* prohibited.                                  *
  15. #*                                      *
  16. #* RESTRICTED RIGHTS LEGEND:                          *
  17. #*                                      *
  18. #* Use, duplication or disclosure by the Government is subject to         *
  19. #* restrictions as set forth in subdivision (c)(1)(ii) of the Rights in   *
  20. #* Technical Data and Computer Software clause at DFARS 52.227-7013,      *
  21. #* and/or in similar or successor clauses in the FAR, DOD or NASA FAR     *
  22. #* Supplement. Unpublished - rights reserved under the Copyright Laws of  *
  23. #* the United States. Contractor is SILICON GRAPHICS, INC., 2011 N.       *
  24. #* Shoreline Blvd., Mountain View, CA 94039-7311                          *
  25. #**************************************************************************
  26. #*
  27. #* Makefile - libimp, SGI Image file format API library
  28. #*
  29. #* $Revision: 1.1 $
  30. #*
  31. #*
  32. #**************************************************************************
  33.  
  34. include /usr/include/make/commondefs
  35.  
  36. TARGETS = libimp.a
  37.  
  38. CFILES = impOpen.c \
  39.      impClose.c \
  40.      impSeek.c \
  41.      impReadWrite.c \
  42.      impRowIO.c \
  43.      impRowMath.c \
  44.      impRowMisc.c \
  45.      impError.c \
  46.      impSwap.c \
  47.      impColor.c \
  48.      impZoom.c
  49.  
  50. CVERSION = -xansi
  51. OPTIMIZER = -O2
  52. LCOPTS = -fullwarn -woff 819,821,817,826,827
  53.  
  54. ARFLAGS = crls
  55.  
  56. default: $(TARGETS)
  57.  
  58. include $(COMMONRULES)
  59.  
  60. $(TARGETS): $(OBJECTS)
  61.     $(AR) $(ARFLAGS) $(TARGETS) $?
  62.  
  63. install: default
  64.